Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
prompt-choices
Advanced tools
Create an array of multiple choice objects for use in prompts.
Install with npm:
$ npm install --save prompt-choices
Install with yarn:
$ yarn add prompt-choices
var Choices = require('prompt-choices');
var choices = new Choices(['foo', 'bar', 'baz']);
Create a new Choices
collection.
Params
choices
{Array}: One or more choice
strings or objects.Example
var choices = new Choices(['foo', 'bar', 'baz']);
var choices = new Choices([{name: 'foo'}, {name: 'bar'}, {name: 'baz'}]);
Render the current choices.
Params
position
{Number}: Cursor positionoptions
{Object}returns
{String}Add an array of normalized choice
objects to the choices
array. This method is called in the constructor, but it can also be used to add choices after instantiation.
Params
choices
{Array|Object}: One or more choices to add.Example
choices.addChoices(['a', 'b', 'c']);
Create a new Choice
object.
Params
choice
{String|Object}returns
{Object}: Returns a choice object.Example
choices.choice('blue');
Create a new Separator
object. See choices-separator for more details.
Params
separator
{String}: Optionally pass a string to use as the separator.returns
{Object}: Returns a separator object.Example
choices.separator();
Returns true if a choice exists.
Params
val
{Number}: The index or key of the choice to check for.returns
{Boolean}Example
choices.hasChoice(1);
choices.hasChoice('foo');
Get the choice or separator object at the specified index.
Params
idx
{Number}: The index of the object to getreturns
{Object}: Returns the specified choiceExample
var choice = choices.get(1);
Get a non-separator choice from the collection.
Params
idx
{Number}: The selected choice indexreturns
{Object|undefined}: Return the matched choice object or undefinedExample
choices.getChoice(1);
choices.getChoice('foo');
Get the index of a non-separator choice from the collection.
Params
key
{String}: The key of the choice to getreturns
{Number}: Index of the choice or -1
;Example
var choices = new Choices(['foo', 'bar', 'baz']);
console.log(choices.getIndex('foo')); //=> 0
console.log(choices.getIndex('baz')); //=> 2
console.log(choices.getIndex('bar')); //=> 1
console.log(choices.getIndex('qux')); //=> -1
Enable the choice at the given idx
.
Params
idx
{Number}: The index of the choice to enable.Example
choices.enable(1);
Disable the choice at the given idx
.
Params
idx
{Number}: The index of the choice to enable.Example
choices.disable(1);
Toggle the choice at the given idx
.
Params
idx
{Number}: The index of the choice to toggle.Example
choices.toggle(1);
// radio mode
choices.toggle(1, true);
Return choice values for choices that return truthy based
on the given val
.
Params
val
{Object|Function|String|RegExp}returns
{Array}: Matching choices or empty arrayReturns true if the given index
is a valid choice index.
Params
key
{String}: Property name to use for plucking objects.returns
{Array}: Plucked objectsReturn the .key
property from the choice at the given index.
Params
key
{String}: Property name to use for plucking objects.returns
{Array}: Plucked objectsPluck an object with the specified key from the choices collection.
Params
key
{String}: Property name to use for plucking objects.returns
{Array}: Plucked objectsGetter for getting the checked choices from the collection.
Getter for getting the length of the collection.
Create a new Separator
object. See choices-separator for more details.
Params
separator
{String}: Optionally pass a string to use as the separator.returns
{Object}: Returns a separator object.Example
new Choices.Separator();
Code is partially based on the Choices
class in Inquirer.
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on April 29, 2017.
FAQs
Create an array of multiple choice objects for use in prompts.
The npm package prompt-choices receives a total of 47,707 weekly downloads. As such, prompt-choices popularity was classified as popular.
We found that prompt-choices demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.